home *** CD-ROM | disk | FTP | other *** search
/ Extra! Mainframe / Extra! Mainframe for Windows 95.iso / snaserv / source / snacdlgs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-01  |  1.4 KB  |  70 lines

  1. /****************************************************************************
  2. **
  3. **    File:            SAMPDLGS.H
  4. **    Purpose:        Header file for dialog controls in the Sample App.
  5. **    Notes:
  6. **
  7. ****************************************************************************/
  8.  
  9. #ifndef SAMPDLGS_H
  10. #define SAMPDLGS_H
  11.  
  12.  
  13. /*
  14.  *    Dialog ID's
  15.  */
  16. #define DLG_BBREGCARD    990
  17. #define DLG_BBINSTANT    991
  18. #define DLG_BBREQUESTS    992
  19. #define DLG_BBANALYSIS    993
  20. #define DLG_BBLEARN        994
  21.  
  22. #define DLG_SINGSELLIST 995
  23.  
  24.  
  25. /*
  26.  * Pushbutton controls.
  27.  *    NOTE: Pushbuttons must be within the range PUSHMIN to PUSHMAX.
  28.  */
  29. #define    IDC_PUSHMIN                0x0000
  30. #define    IDC_PUSHMAX                0x0100
  31.  
  32. #define    IDC_OK                    IDOK        /* 0x0001 (from windows.h) */
  33. #define    IDC_CANCEL                IDCANCEL
  34. #define    IDC_ABORT                IDABORT
  35. #define    IDC_RETRY                IDRETRY
  36. #define    IDC_IGNORE                IDIGNORE
  37. #define    IDC_YES                    IDYES
  38. #define    IDC_NOPE                IDNO        /* 0x0007 */
  39.  
  40.  
  41. /*
  42.  *    Control ID's         ALWAYS KEEP TEXT CONTROL IDs CONTIGUOUS!!!!1
  43.  */
  44. #define IDC_BBTEXT1      0x0301
  45. #define IDC_BBTEXT2      0x0302
  46. #define IDC_BBTEXT3      0x0303
  47. #define IDC_BBTEXT4         0x0304
  48. #define IDC_BBTEXTMAX    0x0305
  49.  
  50. #define IDC_DESTDIR      0x0401
  51. #define IDC_LISTBOX      0x0402
  52. #define IDC_LISTBOXLABEL 0x0403
  53.  
  54.  
  55. /*
  56.  *    Icon ID's
  57.  */
  58. #define ICON_SAMPAPP   201
  59.  
  60. /*
  61.  *    Window Classes
  62.  */
  63. #define BBMP_CLASS        "BBMPGNGK"
  64. #define HEADLINE_CLASS    "HEADLINE"
  65.  
  66.  
  67.  
  68.  
  69. #endif  /* SAMPDLGS_H */
  70.